Pumpkin Carving Festival Has Returned

Ghosttown Pumpkin Festival, a free itch.io game that we reported on last year, has returned! Install it, apply the easy-to-use tools to carve a randomly-generated pumpkin, then upload it to the servers for everyone to look at and vote on! The servers stay up until mid-November, so you have lots of time to construct and show your work. While it’s free, you can spend $2 for a version that will let your ghost avatar wear a hat of their choice.

While you can upload pumpkins whenever, if the festival display fills up you might end up having your pumpkin shunted into an alternate town shard, so if you want more people to behold your work (and despair?), you’ll want to complete your Jack-O-Project soon.

To place your pumps, enter the festival, press Escape to choose the “dimension” you want for it, then explore for a bit with the WASD keys. When you’ve found a good spot for it press Escape again and click the pumpkin icon to select which of your saved creations to place. The spots where your orange gourdfriends can reside show up as gray dots.

Create something cool, and tell us about it here, if you feel like it!

Ghosttown Pumpkin Festival 2024 (itch.io, $0/$2)

Ed Logg on Creating Gauntet

Recently I’ve been working on a getting-started guide on what I think is one of the most interesting games in UFO 50, Pilot Quest. (Other games I’ve really enjoyed, though I’ve by no means tried every game in the collection yet: Magic Garden, Waldorf’s Journey, Planet Zoldath, Attactics, Kick Club, Onion Delivery, Porgy, Valbrace, Grimstone and Mini & Max.)

Guides take time, so in the meantime here’s an hour-long talk by Ed Logg on the creation of Gauntlet, from GDC 2012!

The Rogue Archive

Hello everyone, I’m back! Today’s find is an archive of old versions of Rogue!

While there were games with aspects of Rogue before it conquered university Unix systems, like Beneath Apple Manor, Rogue still deserves its status as the namesake of the roguelikes. Its great popularity on campuses inspired a slew of expansions and variations.

The world of early roguelikes wavers in its documentation and preservation. There’s several early roguelikes that are nearly unplayable today: the Roguelike Restoration Project (their site appears to have returned to the internet in 2022) has tried to preserve them but its manager has time constraints. I know that Herb Chong, who created a variant called UltraRogue, is still around, and has expressed interest in getting the code running again, but it’s a difficult project, not the least reason for being that the original game saved games by creating and reloading raw chunks of memory. (Roguelike Restoration Project put the original source up here if anyone wants to take a crack at it.)

Several versions of UltraRogue, as well as many versions of Rogue, Advanced Rogue, Super Rogue, XRogue, and others, can be found on The Rogue Archive. Playing some of them might be difficult, but the code is there, sometimes in object form, sometimes as source. It preserves the code for Rog-O-Matic, the computer program that, itself, plays Rogue. You can even find more obscure variations of Rogue there, like HexRogue (which has become unplayable on its home site since Java support for browsers was abandoned), zRogue (an implementation for the Infocom zMachine), PalmOS versions, something called Advanced SuperTurbo Rogue Plus, and more.

I’ve always maintained my affection for Rogue, even if in the eyes of many it’s deficient in features these days. But that means it’s short, it won’t consume weeks of your free time to finish it, while it’s also complex enough to maintain interest, and challenging enough that it’ll take a while to master. If, in this Year of our Frog 2024, you haven’t tried Rogue yet, well, why not? You’ll probably die, but in the end, that’s better odds than real life!

Sundry Sunday: The Balatro Theme With Mother 3 Instruments

Sundry Sunday is our weekly feature of fun gaming culture finds and videos, from across the years and even decades.

Prepare to get the Balatro music stuck in your head all over again, but with the Mother 3 “soundfont,” a word that I’m not thrilled with. I don’t hate it, it’s just that there’s already good ways to refer to that concept, like “instrument set.” Ah. Oh well. Anyway. Here it is. (4 minutes – wait, the Balatro music is only four minutes long?)

A Note _For_ The Editor

@rodneylives, stalwart editor for the entirety of Set Side B’s existence is in a bad spot- stuck due to Hurricane Helene and suffering a bad car accident that thankfully saw no casualties but likely many other expenses. Myself and the other posters will do our best to fill in the while the editor recovers, but if you have a couple dollars we’d really appreciate it if you sent them his way in what is a really hard time. Here’s how you can do that:

Thanks, and stay safe out there everyone.

Twinbeard Finishes Every Goal of Super Mario World

I had a car accident last night, and while it could have been much worse in retrospect, I’m still pretty shaken. So for today, let’s just relax and watch Twinbeard, who had been playing through every level and finding every goal, finally reach the end of Super Mario World. (18 minutes) Whew.

Nicole Express on Twin Famicom Compatibility with Guardic Gaiden

Nicole Express is so knowledgable. How many blog posts have you seen about an obscure hardware issue, itself with obscure hardware, and the Japanese version of one specific cult game? Which the writer tested herself with her own unit and cartridge? Then went in to investigate herself with a freaking multimeter? Whaaa?

Nicole’s two Twin Famicoms

I won’t keep you waiting for the link: here it is. And here is my grossly simplified summary, intended to inspire you to go to the original article, if you have the time, and get all the deets.

Guardic Gaiden, known in the US as The Guardian Legend, uses a weird trick to put its status bar at the bottom of the screen, instead of, as usually seen in an UNROM game, at the top. To create a fixed status window requires stopping whatever the processor is doing at a very precise time while the display is being drawn to the TV, and then changing some PPU registers to display the status.

Guardic Gaiden’s title screen

More complex and versatile mappers, like the MMC family, have the ability to trigger interrupts at specific screen lines, but Guardic Gaiden/Guardian Legend doesn’t use an MMC. It doesn’t even have a raster line counter, so the game simply doesn’t know where on screen the raster beam is drawing.

There are still lots of games on the system that have status windows, even with MMC chips. The PPU has a built-in feature called Sprite 0 Hit, where the chip can signal when Sprite 0 (of the system’s 64 sprites) is being drawn on top of non-transparent background data. So what older games commonly do is put Sprite 0 in an unobtrusive place at the bottom of the status window at the top of the screen. When the Sprite 0 Hit register indicates a collision, the code knows it’s time to set up the PPU to display the main portion of the game screen.

There is a really big problem with this setup, though. Sprite 0 Hit doesn’t trigger an interrupt. It doesn’t stop the code to let it switch the graphics. It’s not even proper to say it “sends a signal.” It’s up to the code to check if Sprite 0 Hit has been triggered. If it has, then it’s time to set the scroll register to the right place, and maybe switch to the proper background tileset, and do whatever else needs to happen, and the code can then be off to run essential game logic, the actual game part of the game.

If it hasn’t… then, the code has to check again, and immediately. And if it hasn’t triggered then, to do it again. It has to literally check as quickly as it can, because if it delays in its check, the game screen might not get set up at the right moment, which will be perceptible as the bar straying down one extra line that one frame. Not the end of the world, but it looks glitchy. And this code will be running every frame, so if it strays down once, it might do it again, which is a more perceptible glitchiness.

Sprite 0 is set to trigger its hit at the top of the screen, because the code won’t have to spin its wheels checking the hit over and over. It wastes time, but not that much. This is why UNROM games put their status lines, with the score, timer, health bar and life counters, at the top of the screen.

Well, The Guardian Legend is an UNROM game, and maybe because creators Compile wanted to show off, they decided they’d put the bar at the bottom of the screen. And yet, their game doesn’t waste most of each frame just in maintaining the status bar.

How? And what does that have to do with the Twin Famicom? For that I’m going to direct you to Nicole Express’ blog post. May you find it as fascinating as I did!

Nicole Express: Is the Twin Famicom Flawed? The Case of Guardic Gaiden

Katamari Damacy Turns 20

Paste Magazine has a piece up on Namco’s seminal Playstation 2 game Katamari Damacy turning 20. It’s still one of those titles that has the power to attract attention when they see it played, especially if they’ve never heard of it before.

In case you haven’t heard of it (is that possible?)–you, playing the part of the Prince of all the Cosmos, have a sticky ball, called a katamari, which means “clump,” on a series levels that are laid out as kind of surreal versions of normal Earth environments. Typical places might include a Japanese living room, a modestly-sized town, and a larger city. The idea is to roll the ball so that it comes into contact with various objects. If they’re at most a certain size relative to that of the ball, they stick to it, and in so doing make its aggregate size a little larger. The more things that stick to the ball, the bigger it gets, and so the larger the size of things that will stick. If you reach a certain target size within the time limit you complete the stage. If you fail then the Prince’s father, the King of All Cosmos, expresses his disappointment in you in a ludicrously extreme manner. While not all of the levels are about achieving raw size, the most entertaining ones do, and they’re all about fulfilling certain goals with the katamari. This should give you a sense of how the game plays, if needed:

Since Katamari Damacy, designer Keita Takahashi hasn’t been idle. They also made the downloadable game Noby Noby Boy for PS3, worked on the Flash MMORPG Glitch, and made the weirdly wonderful Wattam. I’ve mentioned previously in these pages that I’m looking forward to his next project, To A T, presuming it survives the travails of publisher Annapurna Interactive.

Back to the Paste Magazine article, it mentions that the game happened due to a fortuitous set of events that involved a bunch of student artists looking for a project, and a number of programmers who worked on it so as not to be seen as idle in a time of layoffs. I personally remember that a substantial part of its legend, perhaps even the tipping point, was due to a particular review on Insert Credit by Tim Rogers. While it’s possible to see his review as a tad self-indulgent, I really don’t have any standing to criticize, seeing as how I created pixel art aliens to be our site’s voice. Hah.

Japanese cover

It did the trick of making people consider the game though, which may have been how this very Japanese game got an English localization, rainbow-and-cow festooned cover intact. I was in college at the time, and for a few months they had PS2s to play in the student union. I found a certain delight in taking in my copy of Katamari Damacy (it had been released in the US by this point) and just playing through Make The Moon. It was the kind of game that would arrest other people in the room and cause them to just watch for a couple of minutes. Another time, I played it on the TV at my cousin’s house when there was a certain teenager, at the age where they sometimes get into a mood to dismiss everything. They scoffed at the game when I put it in; eight minutes later, they were calling out “get the giraffe!”

That Katamari Damacy could happened was a miracle; that it had, and continues to have, this effect on people, seems like magic. It isn’t perfect, because it doesn’t ever make sense to say a created work is “perfect,” there are always tradeoffs, but it is a care where it’s difficult to say it could be improved. Sure, it could be a little easier, but it still never takes more than a few attempts to pass a level. It could be a little harder, but that would make it much less accessible. Suffice to say that it’s at a local maxima of quality, and that can’t be an accident, it’s there because strong effort put it there.

It was inevitable that it would get sequels. Critical consensus is that the best of them was the first one, We Love Katamari, stylized on its logo with a heart in place of Love. It’s the only one with creator Keita Takahashi still at the helm. It’s a little less thematically together than the original; the premise is that the King of All Cosmos from the first game fulfills requests made by fans, much like how the game itself was made due to fan requests. Later sequels were made without Takahashi’s efforts. They feel increasingly fan-servicey, in the sense that they were trying harder and harder to give fans what they wanted, without being sure of what that was.

With each sequel, the luster dulled a bit. There was a furor over the third game in the main series, Beautiful Katamari on Xbox 360, for having paid DLC that was actually just unlock codes for levels that shipped on the disk. There were mobile sequels that were mostly terrible. The last of the series until recently was Katamari Forever, a name that proved inaccurate. More recently, remakes of the first two games have sold fairly well, so maybe it still has a chance to redeem itself with a proper successor.

Anyway, happy 20th birthday to Katamari Damacy. May it spend 25 more years of showing Playstation kids that gaming can be something more than Call of Duty and Fortnite.

UFO 50!

This one isn’t really obscure I think, but it’s amazing, and if I can do my part to help spread the word I’m happy to do so. UFO 50 ($25 on Steam, with other platforms on the way) is a collection of 50 8-bit styled games from Mossmouth, the creator and publisher of Spelunky, although they’re made by all kinds of people.

When you hear “50 games,” you might come to think of it as, 50 little games, but that’s not the case. UFO 50 contains 50 full games, including one in the JRPG genre that could take many hours to finish. It seeks to emulate the experience of putting a pirate multicart into a game console, except none of these games are pirated. It’s a super-abundant collection of fun, and what’s more, the word is that there’s not a single dud in the group, there really is something here for everyone.

Like with Baldur’s Gate III, there’s so much here that it feels like they might be stretching out what’s expected from a relatively small amount of money. My suggestion is, get it, but don’t feel like everyone has to give you 50 full-sized games for $25 in the future. It’s a one-off, wonderful for what it is, but an anomaly.

With 50 games included, it can be difficult to tell where to start! If you let itt sit on the game selection screen, it’ll play demos of the games, which might give some direction to your exploration. By default, the games are listed according to release date in the collection’s fictional chronology, so generally they’ll get more complex later on in the list. Xanagear reviewed every game in UFO 50, in 50 minutes natch:

I haven’t had the chance to get into any of this yet, but a particular game I want to point to is Valbrace, which is a first-person dungeon exploration game, with Crossed Swords-like action combat!

The promised JRPG is Grimstone, which has a western theme, and one of your potential characters (you pick your party at the start) is a dog!

UFO 50 deserves a lot more words than I can give it right now. There may be more to come on it later….

UFO 50 (Steam, $25)

Gamefinds: Make-Ten

We love it when we find weird and unique indie games to tell you all about! Our alien friends to the left herald these occasions.

It’s another of those games that’s remade in Pico8, and in the process becomes subtly different, not necessarily better, but not worse either. It’s Make-Ten, and it’s free on itch.io.

This time it’s not an arcade game. The remake is of a mobile and web game called Fruit Box. I’ve only tried the web version and, in this case, I think the Pico8 version is better. The UI is a lot easier to use for its only action, drawing boxes around numbers. The original uses a generic rectangular box, while the Pico8 version snaps the lines to the number grid, which works much better for me. Also the numbers are colored according to value, which helps readability a lot.

I’m sorry, I should explain what I’m talking about!

It’s one of those simple yet addicting games. You’re given a random field of digits from 1 to 9. You’re given a couple of minutes to draw rectangles around sets of numbers that up to 10. When you do, you get one point per digit you remove (which is a difference from the original), and those digits disappear from the board.

Obviously, pairs of numbers that add up to 10 are relatively easy to find. Any pair of 5s, for instance, can be immediately cleared. Each game usually starts with clearing away any quick pairs. Removed pairs make space to connect further digits. Empty spaces have no number value, and make it easier to clear more than two numbers at once. Some examples of common larger sets to surround (of course they can be in any order): 4-3-3, 1-2-3-4, 7-1-2, 5-3-2, 6-2-2 and 4-4-2. The tricky part is connecting two numbers in the corners of a box, when other digits get in the way, adding unwanted values to the sum.

The most valuable digit is 1, since they fit into the most possible combinations.

While Make-Ten is not a game for perfectionists, as it’s probable that most fields cannot be fully cleared, the game does let you keep playing after time concludes, which is an advantage it has over Fruit Box. It doesn’t count points after the time bar runs out, but it can be interesting to see how much of the board you can complete.

Make-Ten is really simple and has very little fuss about it. It plays quickly, and then it’s over. It’s a nice game for quick sessions. It was written in 500 characters of code, and doesn’t offer any progression or metagame. After two minutes, which begin the moment the game starts, there isn’t even a prompt to play again. To have another go, press Enter and choose to Reset Cart, or just close the window if you’re done.

Make-Ten (itch.io, by pancelor, $0)

Sundry Sunday: The Untitled Goose Programme

Sundry Sunday is our weekly feature of fun gaming culture finds and videos, from across the years and even decades.

It isn’t always easy finding things for this weekly feature. Sometimes it’s backed up a month, sometimes though something gets scheduled just a couple of days after it premieres, and I have to scrape the barrel a bit. But not this time. Oh no.

Remember Untitled Goose Game? Seven years ago I made a Metafilter post about the first WIP promo video, but the game itself is only five years old. Since its 2019 release, there’s been celebratory essays, philosophy essays, desktop toys, a very popular “review” from videogamedunkey, and more wonderful articles and reviews from, among other places, the New Yorker and The Guardian.

Back in 2021, developer House House considered making an animated series about the Goose and its village. Nothing came of it, but they did make a four-minute proof-of-concept animation, and it’s wonderful. Please allow your day to be brightened, and moistened, once again, by the Goose: